create table if not exists vendors."ProductForQuotationHeader"(
				"ProductForQuotationHeaderId" bigserial primary key,
				"QuotationNumber" text,
				"CreatedBy" int references "Account"("AccountId"),
				"CreatedDate" timestamp without time zone,
				"TenderStatusId" int references vendors."TendorStatus"("TenderStatusId")				
);

create table if not exists vendors."ProductForQuotationDetail"(
				"ProductForQuotationDetailId" bigserial primary key,
				"PharmacyProductApprovalId" bigint references vendors."PharmacyProductApproval"("PharmacyProductApprovalId"),
				"ProductForQuotationHeaderId" bigint references vendors."ProductForQuotationHeader"("ProductForQuotationHeaderId"),
				"TenderStatusId" int references vendors."TendorStatus"("TenderStatusId")
);

insert into vendors."TendorStatus" ("Status") values ('Waiting For Quotation');